home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC & Mediji 1998 February
/
PCM_9802.iso
/
programi
/
director
/
data.z
/
Behavior Library.cst
/
00038_Script_Video Rewind
< prev
next >
Wrap
Text File
|
1997-05-09
|
805b
|
34 lines
-- Video Rewind MouseUp
-- a control
-- use in combination with Button PushButton to create a better control button.
property videoSprite -- the sprite number that is getting controlled
on mouseUp me
set the movietime of sprite the VideoSprite of me = 0
end
on getPropertyDescriptionList
set p_list = [ ¼
#videoSprite: [ #comment: "Video Sprite Channel:", ¼
#format: #integer, ¼
#default: 1 ] ¼
]
return p_list
end
on getBehaviorDescription
return ¼
"Rewinds a digital video sprite in the current frame. Attach to a button with the appropriate label." & RETURN & ¼
"PARAMETERS:" & RETURN & ¼
"ò Video Sprite - Enter the number of the sprite channel in which the video is displayed."
end